diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-02-22 14:00:41 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-03-13 10:07:24 +0100 |
commit | e9c3f2ce63e32f98685560609aaab49851e3c463 (patch) | |
tree | c67949bd768f91d48df59cecbcefd5314c916537 /ext/Pod-Functions/t/Functions.t | |
parent | 34ef00e91b974b71032f11c57e6cfe2f9bdf500d (diff) | |
download | perl-smoke-me/perlfunc.tar.gz |
In perlfunc, don't have functions in "Misc" and a second category.smoke-me/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, |