diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-22 10:01:49 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-22 10:01:49 +0000 |
commit | a104f515e1396d6efe6b0936f76a68f8852f5b49 (patch) | |
tree | 9cec9de6e6ead97b82ce8ff1911c646a4e9b9fa4 /pod/perlxs.pod | |
parent | 1450d0701497dd4642a74925571472b56356c156 (diff) | |
download | perl-a104f515e1396d6efe6b0936f76a68f8852f5b49.tar.gz |
s/undef/NO_INIT/g in change#5183
p4raw-link: @5183 on //depot/perl: 4628e4f8c013135d9c9ab7023d7730ab67289444
p4raw-id: //depot/perl@5195
Diffstat (limited to 'pod/perlxs.pod')
-rw-r--r-- | pod/perlxs.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlxs.pod b/pod/perlxs.pod index 2055ce6d39..7359d34818 100644 --- a/pod/perlxs.pod +++ b/pod/perlxs.pod @@ -504,7 +504,7 @@ C<ST(1)>. Default values for XSUB arguments can be specified by placing an assignment statement in the parameter list. The default value may -be a number, a string or the special string C<undef>. Defaults should +be a number, a string or the special string C<NO_INIT>. Defaults should always be used on the right-most parameters only. To allow the XSUB for rpcb_gettime() to have a default host @@ -1317,7 +1317,7 @@ methods will be called as this: You could also write a single get/set method using an optional argument: int - color::blue( val = undef ) + color::blue( val = NO_INIT ) int val PROTOTYPE $;$ CODE: |