Branch: refs/heads/blead
  Home:   https://github.com/Perl/perl5
  Commit: de9762b11e8cf050382a1279c1e7c04efbec1339
      
https://github.com/Perl/perl5/commit/de9762b11e8cf050382a1279c1e7c04efbec1339
  Author: Karl Williamson <k...@cpan.org>
  Date:   2024-07-31 (Wed, 31 Jul 2024)

  Changed paths:
    M autodoc.pl

  Log Message:
  -----------
  autodoc: Fixup signature arglist indentation

Somehow this got removed from eabcc813bd321e2c9973f985fa28ab67657e78e2.
It affects only a few edge cases.  For example, before this, perlapi had
these lines,

 void       sv_vcatpvfn           (SV * const sv,
                                       const char * const pat,
                                       const STRLEN patlen,
                                       ...

 where the first argument to the function  was misaligned with the
 others.  This patch produces instead:

 void       sv_vcatpvfn           (    SV * const sv,
                                       const char * const pat,
                                       const STRLEN patlen,
                                       ...



To unsubscribe from these emails, change your notification settings at 
https://github.com/Perl/perl5/settings/notifications

Reply via email to