From fd98523755de60f3135b0442ef87243bdf8d9bf1 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Mon, 10 Jun 2024 15:09:23 -0600 Subject: [PATCH] perlapi: Combine POPp POPx entries These are identical --- pp.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pp.h b/pp.h index 2f34e0d38296..395ab5420f66 100644 --- a/pp.h +++ b/pp.h @@ -177,12 +177,11 @@ See C> and L for other uses. =for apidoc Amn|SV*|POPs Pops an SV off the stack. -=for apidoc Amn|char*|POPp -Pops a string off the stack. +=for apidoc Amn|char*|POPp +=for apidoc_item |char*|POPpx -=for apidoc Amn|char*|POPpx -Pops a string off the stack. Identical to POPp. There are two names for -historical reasons. +These each pop a string off the stack. +There are two names for historical reasons. =for apidoc Amn|char*|POPpbytex Pops a string off the stack which must consist of bytes i.e. characters < 256.