8446b7
From b26a606d84ae1a6da560c7cd71d1a33c0dc7178e Mon Sep 17 00:00:00 2001
8446b7
From: Karl Williamson <khw@cpan.org>
8446b7
Date: Sun, 14 Jun 2020 12:26:02 -0600
8446b7
Subject: [PATCH] Update pod for SvTRUE, to indicate single param evaluation
8446b7
MIME-Version: 1.0
8446b7
Content-Type: text/plain; charset=UTF-8
8446b7
Content-Transfer-Encoding: 8bit
8446b7
8446b7
5.32 changed this macro into an inline function so that 'sv' only gets
8446b7
evaluated once, but didn't update the documentation to reflect that.
8446b7
8446b7
Signed-off-by: Petr Písař <ppisar@redhat.com>
8446b7
---
8446b7
 sv.h | 3 ++-
8446b7
 1 file changed, 2 insertions(+), 1 deletion(-)
8446b7
8446b7
diff --git a/sv.h b/sv.h
8446b7
index 3721b2fb1b..ad8accbf1a 100644
8446b7
--- a/sv.h
8446b7
+++ b/sv.h
8446b7
@@ -1607,7 +1607,8 @@ false.  See C<L</SvOK>> for a defined/undefined test.  Handles 'get' magic
8446b7
 unless the scalar is already C<SvPOK>, C<SvIOK> or C<SvNOK> (the public, not the
8446b7
 private flags).
8446b7
 
8446b7
-See C<L</SvTRUEx>> for a version which guarantees to evaluate C<sv> only once.
8446b7
+As of Perl 5.32, this is guaranteed to evaluate C<sv> only once.  Prior to that
8446b7
+release, use C<L</SvTRUEx>> for single evaluation.
8446b7
 
8446b7
 =for apidoc Am|bool|SvTRUE_nomg|SV* sv
8446b7
 Returns a boolean indicating whether Perl would evaluate the SV as true or
8446b7
-- 
8446b7
2.25.4
8446b7