diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-02-22 14:00:41 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-02-22 14:00:41 +0100 |
commit | 6e3b316b497ac1a77c19e5fe2b5e7270fe6b01f8 (patch) | |
tree | 65e5c6110f19b6f65634f66515ebfbbe29f95376 /ext/Pod-Functions/t/Functions.t | |
parent | f55cbdaadae76dd7924515c9a13f94aa9572eded (diff) | |
download | perl-nicholas/perlfunc.tar.gz |
In perlfunc, don't have functions in "Misc" and a second category.nicholas/perlfunc
dump, eval, evalbytes and wantarray are now only in "flow control".
local, my, our and state are only in "scoping".
prototype is now only in "misc". Whilst *prototypes* affect parsing, and
hence indirectly flow control, the prototype function is for introspecting
prototypes.
Diffstat (limited to 'ext/Pod-Functions/t/Functions.t')
-rw-r--r-- | ext/Pod-Functions/t/Functions.t | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/Pod-Functions/t/Functions.t b/ext/Pod-Functions/t/Functions.t index 79298445ef..53da93a46c 100644 --- a/ext/Pod-Functions/t/Functions.t +++ b/ext/Pod-Functions/t/Functions.t @@ -115,14 +115,13 @@ Functions for filehandles, files, or directories: Keywords related to the control flow of your Perl program: __FILE__, __LINE__, __PACKAGE__, __SUB__, break, caller, continue, die, do, dump, eval, evalbytes, exit, goto, - last, next, prototype, redo, return, sub, wantarray + last, next, redo, return, sub, wantarray Keywords related to scoping: caller, import, local, my, our, package, state, use Miscellaneous functions: - defined, dump, eval, evalbytes, formline, local, lock, my, - our, prototype, reset, scalar, state, undef, wantarray + defined, formline, lock, prototype, reset, scalar, undef Functions for processes and process groups: alarm, exec, fork, getpgrp, getppid, getpriority, kill, |