diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-01-23 09:22:01 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-01-23 09:22:01 +0000 |
commit | 3ae1b22641a16d4d08aba688616c0f7cefb7d1f5 (patch) | |
tree | 328fb3e73472d14b47df8b7777382e58d14ab433 /pod | |
parent | 3134ad69d93db50cabc8276feb0660bf859dbad1 (diff) | |
download | perl-3ae1b22641a16d4d08aba688616c0f7cefb7d1f5.tar.gz |
Deprecate (and remove core use of ) Nullav, Nullcv, Nullgv, Nullhe,
Nullhek and Nullhv. Nullop is going to be a bit less simple.
p4raw-id: //depot/perl@33051
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlapi.pod | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 15875dc9f3..ce39d2ac26 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -1399,6 +1399,8 @@ X<Nullav> Null AV pointer. +(deprecated - use C<(AV *)NULL> instead) + =for hackers Found in file av.h @@ -1415,6 +1417,8 @@ X<Nullcv> Null CV pointer. +(deprecated - use C<(CV *)NULL> instead) + =for hackers Found in file cv.h @@ -1423,6 +1427,8 @@ X<Nullhv> Null HV pointer. +(deprecated - use C<(HV *)NULL> instead) + =for hackers Found in file hv.h |