summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2022-12-07 16:17:45 +1100
committerTony Cook <tony@develop-help.com>2023-02-07 10:37:30 +1100
commit7e2d91e6d3a09e2ebb61242bb18ff95d30d9560d (patch)
tree384497ce7e97d4a3b54435982e0f0ccdbbc21293 /proto.h
parenta36fec492e3c37aae28f47766892f34b74d51b31 (diff)
downloadperl-7e2d91e6d3a09e2ebb61242bb18ff95d30d9560d.tar.gz
toke.c: deprecation warning for ' as a package separator
First stage of RFC 0015. This also changes the warning for ' as package separator in quoted strings to also be a deprecation warning.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 0efbfeaeb6..286c2e18a7 100644
--- a/proto.h
+++ b/proto.h
@@ -4155,7 +4155,7 @@ Perl_scan_vstring(pTHX_ const char *s, const char * const e, SV *sv);
assert(s); assert(e); assert(sv)
PERL_CALLCONV char *
-Perl_scan_word(pTHX_ char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp);
+Perl_scan_word(pTHX_ char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp, bool warn_tick);
#define PERL_ARGS_ASSERT_SCAN_WORD \
assert(s); assert(dest); assert(slp)