summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2017-01-12 14:46:21 -0700
committerKarl Williamson <khw@cpan.org>2019-03-13 18:17:55 -0600
commit2c43c309caa1db7b713cc5d1bed58a8f534d977b (patch)
tree45e4e0fe639b5558f5b15601f5bff771ef6304a4 /embed.h
parent164e423c70b80a4c3880f33561005d1fb870699c (diff)
downloadperl-2c43c309caa1db7b713cc5d1bed58a8f534d977b.tar.gz
toke.c: Add wrapper function
This is in preparation for the underlying function to be called from elsewhere. This adds a wrapper to be used internally in toke.c that keeps the other caller of the underlying function from having to know the changes to that function. That function is changed to return any error message instead of raising it itself.
Diffstat (limited to 'embed.h')
-rw-r--r--embed.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/embed.h b/embed.h
index 9439f4083b..827974be1c 100644
--- a/embed.h
+++ b/embed.h
@@ -2030,7 +2030,8 @@
#define force_strict_version(a) S_force_strict_version(aTHX_ a)
#define force_version(a,b) S_force_version(aTHX_ a,b)
#define force_word(a,b,c,d) S_force_word(aTHX_ a,b,c,d)
-#define get_and_check_backslash_N_name(a,b) S_get_and_check_backslash_N_name(aTHX_ a,b)
+#define get_and_check_backslash_N_name(a,b,c) S_get_and_check_backslash_N_name(aTHX_ a,b,c)
+#define get_and_check_backslash_N_name_wrapper(a,b) S_get_and_check_backslash_N_name_wrapper(aTHX_ a,b)
#define incline(a,b) S_incline(aTHX_ a,b)
#define intuit_method(a,b,c) S_intuit_method(aTHX_ a,b,c)
#define intuit_more(a,b) S_intuit_more(aTHX_ a,b)