Preferrably as patches (for example via git format-patch), as mail to perl5-porters@perl.org, or via the perlbug utility, which will send the mail for you. perlrepository (alternatively http://perl5.git.perl.org/perl.git/blob/HEAD:/pod/perlrepository.pod) has more information on how to set up a git mirror of bleadperl and how to format a patch but the basic workflow is:

  1. git clone http://perl5.git.perl.org/perl.git bleadperl
  2. Modify the document you want to modify, in your case, perlsub in pod/perlsub.pod
  3. Commit your change(s) by using git commit -a -m "Make perlsub please LanX" or, better, a more descriptive name.
  4. Create a patch file by using git format-patch origin - this should leave you with one (or more) files 0001-make-perlsub-please-lanx.patch, 0002-...
  5. Send these to perl5-porters@perl.org, preferrably with a second description of your rationale behind creating the patch, and what the patch changes.

In reply to Re^2: pass code block to function (PROTOTYPES) by Corion
in thread pass code block to function (PROTOTYPES) by jeanluca

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.