diff options
author | David Mitchell <davem@iabyn.com> | 2014-09-19 17:40:25 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2014-09-19 17:40:25 +0100 |
commit | b1c05ba5b06e0d1b9fedf625f1c647b7ea832ed0 (patch) | |
tree | d59c3a96a59ab169766eb7c87bf55301544df555 /doop.c | |
parent | dacd2ca73583513edf8eeb5ab9a877e84de91d15 (diff) | |
download | perl-b1c05ba5b06e0d1b9fedf625f1c647b7ea832ed0.tar.gz |
comment pp_foo aliases in pp*.c
Where pp_foo() also handles OP_BAR, add a comment above the function
mentioning that it also does pp_bar.
This means that "grep pp_bar pp*.c" quickly locates the file/function that
handles OP_BAR.
Diffstat (limited to 'doop.c')
-rw-r--r-- | doop.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1215,6 +1215,9 @@ finish: SvTAINT(sv); } + +/* used for: pp_keys(), pp_values() */ + OP * Perl_do_kv(pTHX) { |