summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2017-01-14 22:13:54 +0100
committerAbigail <abigail@abigail.be>2017-01-16 19:18:16 +0100
commitecbcbef0f9456cff348b48ea07ccfef844c4a5eb (patch)
treeec0a4533369d6b739249cba3f69c2cd7a91b6d4f /op.h
parent1972ac5c2455a780ab04acb68be3dcde091c19ce (diff)
downloadperl-ecbcbef0f9456cff348b48ea07ccfef844c4a5eb.tar.gz
String bitwise operators will not accept code points > 0xFF in 5.28
Diffstat (limited to 'op.h')
-rw-r--r--op.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/op.h b/op.h
index c0e6386985..90f63e3227 100644
--- a/op.h
+++ b/op.h
@@ -1075,7 +1075,8 @@ C<sib> is non-null. For a higher-level interface, see C<L</op_sibling_splice>>.
#if defined(PERL_IN_DOOP_C) || defined(PERL_IN_PP_C)
static const char * const deprecated_above_ff_msg
= "Use of strings with code points over 0xFF as arguments to "
- "%s operator is deprecated";
+ "%s operator is deprecated. This will be a fatal error in "
+ "Perl 5.28";
#endif