summaryrefslogtreecommitdiff
path: root/pod
Commit message (Collapse)AuthorAgeFilesLines
* perlapi: PL_runops is documented in perlgutsKarl Williamson2020-11-061-0/+2
|
* autodoc.pl: Specify scn for single-purpose filesKarl Williamson2020-11-066-8/+1
| | | | | | | | Many of the files in perl are for one thing only, and hence their embedded documentation will be for that one thing. By creating a hash here of them, those files don't have to worry about what section that documentation goes under, and so it can be completely changed without affecting them.
* autodoc.pl: Enhance apidoc_section featureKarl Williamson2020-11-061-10/+10
| | | | | | | | | | | This feature allows documentation destined for perlapi or perlintern to be split into sections of related functions, no matter where the documentation source is. Prior to this commit the line had to contain the exact text of the title of the section. Now it can be a $variable name that autodoc.pl expands to the title. It still has to be an exact match for the variable in autodoc, but now, the expanded text can be changed in autodoc alone, without other files needing to be updated at the same time.
* perlguts: SAVEBOOL takes a boolKarl Williamson2020-11-051-1/+1
|
* perlinterp: Fix markupKarl Williamson2020-11-051-1/+1
| | | | FOO is allegoric, not literal
* \K in lookaround might become permitted in the futureTony Cook2020-11-041-1/+4
| | | | | | | | | It was disallowed because: - it was breaking things (GH #14638) - at the time, no-one had the tuits and knowledge to select non-buggy semantics and implement them.
* perldata - example of using DATADan Book2020-11-031-1/+7
|
* Note various symbols are documented in perlinterpKarl Williamson2020-11-021-0/+12
|
* Note MRO_GET_PRIVATE_DATA is documented in perlmroapiKarl Williamson2020-11-021-0/+1
|
* Note various symbols are documented in perliolKarl Williamson2020-11-021-0/+25
|
* perlguts: Fix up some perlapi entriesKarl Williamson2020-11-021-4/+4
| | | | There were syntax errors in these.
* perlclib: Don't mention toFOO_LC()Karl Williamson2020-11-011-2/+2
| | | | | There are locales where these macros don't give the right answer for all legal inputs; so don't mention them.
* Fix typo in perlgutsBen Cornett2020-10-311-1/+1
|
* perlguts: some items are actually documented in config.hKarl Williamson2020-10-221-10/+0
|
* perlapi: PTRV is a typedefKarl Williamson2020-10-221-1/+1
|
* perlintro - Use single hyphen in NAME sectionDan Book2020-10-201-1/+1
|
* Create new perldelta for 5.33.4Steve Hay2020-10-204-144/+588
|
* 5.33.3 todayv5.33.3Steve Hay2020-10-201-0/+1
|
* Finalize perldeltaSteve Hay2020-10-201-2/+31
| | | | Including a final Porting/corelist-perldelta.pl run.
* perldelta - Various updatesSteve Hay2020-10-181-15/+47
|
* perldelta - Remove boilerplateSteve Hay2020-10-181-294/+0
|
* perldelta - Update Modules and PragmataSteve Hay2020-10-181-23/+147
|
* regnodes.h: Add two convenience bit masksKarl Williamson2020-10-161-1/+0
| | | | | | | These categorize the many types of EXACT nodes, so that code can refer to a particular subset of such nodes without having to list all of them out. This simplifies some 'if' statements, and makes updating things easier.
* regcomp.sym: Make adjacent opcodes for 2 similar regnodesKarl Williamson2020-10-161-3/+3
| | | | | These are often tested together. By making them adjacent we can use inRANGE.
* regcomp.sym: Update node commentsKarl Williamson2020-10-161-7/+8
|
* pod/perlfunc.pod: Remove misleading code example (#18105)James E Keenan2020-10-141-2/+1
| | | | | | | * pod/perlfunc.pod: Remove misleading code example For: GH 18016 * Additional correction suggested by Dan Book
* perlsub - Link to constant pragmaDan Book2020-10-141-1/+1
|
* Replace ssh with https (#18229)apparluk2020-10-131-0/+7
| | | | | | | | | | | * use https in perlhack.pod * https and ssh in perlhack.pod * closing angle bracket * links * author
* perlguts: Note that various typedefs are documented hereKarl Williamson2020-10-081-5/+72
| | | | And fill in the descriptions for things like U8
* Add crosslinks between perl5db.pl and perldebug-related docsDan Book2020-10-083-1/+7
|
* perlclib: Use proper referenceKarl Williamson2020-10-071-1/+1
| | | | It was referring to the wrong function
* perlutil updates and cleanupDan Book2020-10-061-28/+47
| | | | | | | | | - Add missing encguess, json_pp, and streamzip utilities - Normalize item entries for utilities so they are equally visible and linkable - Normalize usage of F<> on unlinked executables - Normalize linking to referenced modules - Simplify links with duplicate text - Clean up SEE ALSO
* perlfunc.pod - describe that "x" and "b" work the same way asTAKAI Kousuke2020-10-041-2/+2
| | | | "0x" and "0b" in oct()
* Fix typosSamanta Navarro2020-10-0312-16/+16
| | | | | | | | | For: https://github.com/Perl/perl5/pull/18201 Committer: Samanta Navarro is now a Perl author. To keep 'make test_porting' happy: Increment $VERSION in several files. Regenerate uconfig.h via './perl -Ilib regen/uconfig_h.pl'.
* regcomp.sym: Reorder some entriesKarl Williamson2020-10-021-18/+18
| | | | | | | | These are mostly used in regexec.c in three functions. Two of the functions use less than half the available ones, as case labels in a switch() statement. By moving all the ones used by those functions to be nearly contiguous at the beginning, compilers can generate smaller jump tables for the switch().
* perlvar: Remove mention of WIFCONTINUEDKarl Williamson2020-09-281-2/+2
| | | | This is not supported.
* GH #12937: document perldb.iniSawyer X2020-09-271-3/+3
|
* perlcommunity - replace reference to Raku development with pointer to Raku ↵Dan Book2020-09-271-2/+6
| | | | community resources
* GH #17947: Clarify Perl modules versus librarySawyer X2020-09-261-1/+2
|
* Add re::optimization()Hugo van der Sanden2020-09-251-1/+1
| | | | | Given a compiled regexp object, this returns a hashref of the optimization information discovered for it.
* Update perldelta with Module::CoreListSawyer X2020-09-211-0/+4
|
* new perldelta for 5.33.3Sawyer X2020-09-214-62/+506
|
* add new release to perlhistv5.33.2Sawyer X2020-09-201-0/+1
|
* Update perldeltaSawyer X2020-09-201-2/+64
|
* Update Module::CoreList for 5.33.2Sawyer X2020-09-201-0/+4
|
* Clean up perldeltaSawyer X2020-09-201-361/+30
|
* perlguts: Remove redundant entriesKarl Williamson2020-09-131-45/+0
| | | | I didn't get everything cleaned up in earlier commits
* Update Filter-Util-Call to CPAN version 1.60Todd Rinaldo2020-09-131-1/+1
| | | | | | | | | | [DELTA] 1.60 2020-08-05 rurban - Increase t/call.t verbosity on failures (PR #12 aatomic) - Push cwd to @INC for PERL_CORE (PR #11 jkeenan) - Update search.cpan.org link to metacpan (PR #10 Grinnz)
* Document the security team's processes and practicesJohn Lightsey2020-09-103-18/+506
| | | | | | | | | | | Add a new perlsecpolicy POD file with detailed descriptions of the security team's vulnerability remediation workflow and the criteria used to distinguish security issues from other types of bugs. This also switches the team's public contact address to perl-security@perl.org, and updates the security contact information shown in github's issue interface.
* regen podguts after mg_vtable.pl changesKarl Williamson2020-09-061-87/+44
| | | | Caused in eb0444cb23a8ec47ef18d5aa33ec88aa5e71b7e8