From 2be98ab47bed913a93594852d6a553b7343812f6 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Mon, 28 Jul 2025 16:55:22 -0600 Subject: [PATCH] perlintern: Certain functions wrongly marked visible deprecate(), deprecate_disappears_in(), and deprecate_fatal_in() were marked as publicly visible in the apidoc declarations. They are not; they are available only in the perl core. --- handy.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/handy.h b/handy.h index ca3e43f17e52..4ba60eda6865 100644 --- a/handy.h +++ b/handy.h @@ -2955,13 +2955,13 @@ last-inclusive range. CPAN::Unpack show any users outside the core. =for apidoc_section $warning -=for apidoc Cdm||deprecate|U32 category|"message" +=for apidoc dm||deprecate|U32 category|"message" Wrapper around Perl_ck_warner_d() to produce a deprecated warning in the given category with an appropriate message. The C argument must be a C string. The string " is deprecated" will automatically be added to the end of the C. -=for apidoc Cdm||deprecate_disappears_in|U32 category|"when"|"message" +=for apidoc dm||deprecate_disappears_in|U32 category|"when"|"message" Wrapper around Perl_ck_warner_d() to produce a deprecated warning in the given category with an appropriate message that the construct referred to by the message will disappear in a specific release. The C and @@ -2971,7 +2971,7 @@ message output will be the result of the following expression C which is why C and C must be literal C strings. -=for apidoc Cdm||deprecate_fatal_in|U32 category|"when"|"message" +=for apidoc dm||deprecate_fatal_in|U32 category|"when"|"message" Wrapper around Perl_ck_warner_d() to produce a deprecated warning in the given category with an appropriate message that the construct referred to by the message will become fatal in a specific release. The C