From: Steve Hancock Date: Fri, 12 Apr 2024 02:55:07 +0000 (-0700) Subject: update docs X-Git-Tag: 20240202.05~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=354fb7704cf8530e026be491fbe4302308bee775;p=perltidy.git update docs --- diff --git a/bin/perltidy b/bin/perltidy index b486b7e5..44f29bf9 100755 --- a/bin/perltidy +++ b/bin/perltidy @@ -6097,32 +6097,32 @@ so it is worth checking. =back -B +B =over 4 =item * -The only subs which these checks are made are those for which the call args are unpacked in an orderly manner at the beginning of the sub from C<@_>, directly and/or with C operations. +Checks are only made for subs which appear to unpack call args in an orderly +manner at the beginning of the sub from C<@_>, directly and/or with C +operations. =item * Subs which appear to have no args are not checked. This restriction is -currently necessary to avoid false warnings when a sub actually uses args in a +necessary to avoid false warnings when a sub actually uses args in a complex way. =item * Only calls which appear to be to subs defined within the file being -processed are checked. The file may contain any number of packages. +processed are checked. =item * Sub calls made without parentheses around the args are not checked. =item * -Anonymous subs and lexical subs (introduced with C) are not currently -checked. +Anonymous subs and lexical subs (introduced with C) are not checked. =back -Some of these restrictions may be removed in the future. =item B.