[patch hv.h doc] HvNAME
authorSteve Hay <SteveHay@planit.com>
Mon, 11 Jul 2005 14:41:27 +0000 (14:41 +0000)
committerSteve Hay <SteveHay@planit.com>
Mon, 11 Jul 2005 14:41:27 +0000 (14:41 +0000)
From: Stas Bekman <stas@stason.org>
Date: Fri, 08 Jul 2005 13:52:13 +0300
Message-ID: <42CE5ADD.3020003@stason.org>

Subject: Re: [patch hv.h doc] HvNAME
From: Nicholas Clark <nick@ccl4.org>
Date: Sat, 9 Jul 2005 15:23:51 +0100
Message-ID: <20050709142351.GT15833@plum.flirble.org>

p4raw-id: //depot/perl@25111

hv.h
pod/perlapi.pod

diff --git a/hv.h b/hv.h
index fc5bcde..956f949 100644 (file)
--- a/hv.h
+++ b/hv.h
@@ -156,7 +156,8 @@ Null HV pointer.
 =head1 Hash Manipulation Functions
 
 =for apidoc Am|char*|HvNAME|HV* stash
-Returns the package name of a stash.  See C<SvSTASH>, C<CvSTASH>.
+Returns the package name of a stash, or NULL if C<stash> isn't a stash.
+See C<SvSTASH>, C<CvSTASH>.
 
 =for apidoc Am|void*|HeKEY|HE* he
 Returns the actual pointer stored in the key slot of the hash entry. The
index b3deaf6..eb5dca9 100644 (file)
@@ -1078,7 +1078,8 @@ Found in file hv.h
 
 =item HvNAME
 
-Returns the package name of a stash.  See C<SvSTASH>, C<CvSTASH>.
+Returns the package name of a stash, or NULL if C<stash> isn't a stash.
+See C<SvSTASH>, C<CvSTASH>.
 
        char*   HvNAME(HV* stash)