diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-08-21 13:16:59 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-08-24 19:02:56 -0700 |
commit | 41e8cbf436fe4165360381067f6fda82f6565690 (patch) | |
tree | f0c9806637c97a74fe7f1c9cf752913d1cf11b62 /toke.c | |
parent | 2d0e3c969830d8462aa2c3cb9255ecf35a4905b5 (diff) | |
download | perl-41e8cbf436fe4165360381067f6fda82f6565690.tar.gz |
Expand a comment in toke.c (eliminate ‘why?’)
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1848,7 +1848,10 @@ S_check_uni(pTHX) /* * S_lop * Build a list operator (or something that might be one). The rules: - * - if we have a next token, then it's a list operator [why?] + * - if we have a next token, then it's a list operator (no parens) for + * which the next token has already been parsed; e.g., + * sort foo @args + * sort foo (@args) * - if the next thing is an opening paren, then it's a function * - else it's a list operator */ |