summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-12-21 13:15:25 +0100
committerYves Orton <demerphq@gmail.com>2022-12-22 09:38:25 +0100
commit8da47909ef02588ed31b30b7db5e534f747c4273 (patch)
tree123da12c2eb57073f5272a7026e0eec5f8cc58f9 /embed.h
parent81f4fdd02b22307b1419b00cdf59e23a678bc5d5 (diff)
downloadperl-8da47909ef02588ed31b30b7db5e534f747c4273.tar.gz
gv.c - rename amagic_find() to amagic_applies()
The api for amagic_find() didnt make as much as sense as we thought at first. Most people will be using this as a predicate, and don't care about the returned CV, so to simplify things until we can really think this through the required API this switches it to return a bool and renames it to amagic_applies(), as in "which amagic_applies to this sv".
Diffstat (limited to 'embed.h')
-rw-r--r--embed.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed.h b/embed.h
index 6dbaac205a..1597f7f753 100644
--- a/embed.h
+++ b/embed.h
@@ -59,7 +59,6 @@
#define _utf8n_to_uvchr_msgs_helper Perl__utf8n_to_uvchr_msgs_helper
#define amagic_call(a,b,c,d) Perl_amagic_call(aTHX_ a,b,c,d)
#define amagic_deref_call(a,b) Perl_amagic_deref_call(aTHX_ a,b)
-#define amagic_find(a,b,c) Perl_amagic_find(aTHX_ a,b,c)
#define apply_attrs_string(a,b,c,d) Perl_apply_attrs_string(aTHX_ a,b,c,d)
#define apply_builtin_cv_attributes(a,b) Perl_apply_builtin_cv_attributes(aTHX_ a,b)
#define atfork_lock Perl_atfork_lock
@@ -1234,6 +1233,7 @@
#define abort_execution(a,b) Perl_abort_execution(aTHX_ a,b)
#define alloc_LOGOP(a,b,c) Perl_alloc_LOGOP(aTHX_ a,b,c)
#define allocmy(a,b,c) Perl_allocmy(aTHX_ a,b,c)
+#define amagic_applies(a,b,c) Perl_amagic_applies(aTHX_ a,b,c)
#define amagic_is_enabled(a) Perl_amagic_is_enabled(aTHX_ a)
#define apply(a,b,c) Perl_apply(aTHX_ a,b,c)
#define av_extend_guts(a,b,c,d,e) Perl_av_extend_guts(aTHX_ a,b,c,d,e)