summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* remove the expectation of a "P" commandRicardo Signes2013-05-281-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 Clark2013-05-271-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 Cook2013-05-271-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 UCDDavid Steinbrunner2013-05-261-7/+7
|
* Correction recommended by Brad Gilbert++.James E Keenan2013-05-251-2/+2
| | | | | | Bump $VERSION. For: RT #118085
* In the debugger use local $ENV{MANPATH}, instead of a work around.Nicholas Clark2013-05-251-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 Clark2013-05-251-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 Clark2013-05-251-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 Clark2013-05-252-2/+22
| | | | This was accidentally broken by commit c7b0c61d36b24841.
* lib/perldoc.pod is no longer generated, stop ignoring itTony Cook2013-05-251-1/+0
| | | | | This changed with cb1974ba, 4a430f72 added an ignore for the new location but didn't remove the old location.
* typo fix for perl5dbDavid Steinbrunner2013-05-251-9/+9
| | | | Bump $VERSION.
* typo fix for ThreadDavid Steinbrunner2013-05-251-2/+2
| | | | Bump $VERSION.
* typo fix for DBDavid Steinbrunner2013-05-251-2/+2
| | | | Bump $VERSION.
* typo fix for _charnamesDavid Steinbrunner2013-05-252-2/+2
| | | | Bump $VERSION for charnames.
* Add lib/Pod/perldoc.pod to lib/.gitignore.James E Keenan2013-05-251-0/+1
|
* typo fixes for BenchmarkDavid Steinbrunner2013-05-251-24/+24
| | | | Bump $VERSION; clean up trailing whitespace.
* typo fix for File::FindDavid Steinbrunner2013-05-251-2/+2
| | | | Bump $VERSION for File::Find.
* typo fixes for version podDavid Steinbrunner2013-05-241-2/+2
|
* fix various podcheck nitsDavid Golden2013-05-232-8/+22
|
* Make Unicode::UCD::search_invlist() availableKarl Williamson2013-05-222-11/+63
| | | | | This commit documents this function, removing the initial underscore from its name. (And it hardens input checking.)
* Unicode::UCD Clarifications in podKarl Williamson2013-05-221-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 Williamson2013-05-221-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 infoKarl Williamson2013-05-221-15/+36
| | | | This was erroneous. Extra clarifications are also added.
* Fix multi-char fold edge caseKarl Williamson2013-05-201-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 testKarl Williamson2013-05-201-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 commentsKarl Williamson2013-05-201-2/+2
| | | | | One of these fixes is for where a real CTRL-X was specified, instead of $^X
* charnames: fix nit in commentKarl Williamson2013-05-202-3/+3
|
* Remove double space between words in podBrian Fraser2013-05-201-1/+1
|
* lib/utf8.pm: Fix pod verbatim line wrapsKarl Williamson2013-05-201-14/+16
|
* lib/utf8.pm: Pod clarification and nitKarl Williamson2013-05-201-4/+4
|
* Bump $Getopt::Std::VERSION following commit 0c0a84c65e572a92.Nicholas Clark2013-05-201-1/+1
|
* Document getopts before getopt, and de-recommend getopt.Reuben Thomas2013-05-191-10/+12
|
* utf8: Remove unused variable (%utf8::enc).Brian Fraser2013-05-191-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-MessageChris 'BinGOs' Williams2013-05-181-4/+0
|
* Removed cpan/Log-Message-SimpleChris 'BinGOs' Williams2013-05-181-1/+0
|
* Remove cpan/Object-AccessorChris 'BinGOs' Williams2013-05-181-1/+0
|
* Remove cpan/Module-PluggableChris 'BinGOs' Williams2013-05-181-2/+0
|
* Remove cpan/Pod-LaTeX and pod2latex utilityChris 'BinGOs' Williams2013-05-181-1/+0
|
* Remove cpan/Archive-ExtractChris 'BinGOs' Williams2013-05-181-1/+0
| | | | | | | Note: Porting/core-cpan-diff refactored to use Archive::Tar instead of Archive::Extract
* Remove cpan/CPANPLUS and associated utilitiesChris 'BinGOs' Williams2013-05-181-50/+0
|
* Remove cpan/CPANPLUS-Dist-BuildChris 'BinGOs' Williams2013-05-181-2/+0
|
* regen feature.pmRicardo Signes2013-05-181-1/+6
|
* lib/utf8_heavy.pl: Fix separated '(?' tokenKarl Williamson2013-05-021-1/+1
| | | | The next commit will warn when these aren't adjacent
* Document that range operator '..' can not be overloaded.Moritz Lenz2013-04-141-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 thisChris 'BinGOs' Williams2013-03-271-1/+1
|
* Make smartmatch, given & when experimentalBrian Fraser2013-03-262-9/+14
|
* bump version on perl5db.plRicardo Signes2013-03-181-1/+1
|
* lib/perl5db.pl: Workaround rt#116771 by putting DB::Obj inside BEGIN { }Kent Fredric2013-03-181-0/+14
|
* lib/perl5db.t: Add test for bug #116771, autotrace crashes debuggerKent Fredric2013-03-181-1/+8
|
* lib/perl5db.t: Add test for bug #116769, Frame=2 crashes debuggerKent Fredric2013-03-181-1/+8
|