summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgs@consttype.org>2010-04-23 11:42:05 +0200
committerRafael Garcia-Suarez <rgs@consttype.org>2010-04-23 11:42:05 +0200
commita7e260e62a5e47961e908363da32ef16f41301b2 (patch)
tree3a6b7359f4f3ed047fe183278551773e89b1795c /toke.c
parentc4deb7365787eb01845a9d0e371e343169530659 (diff)
downloadperl-a7e260e62a5e47961e908363da32ef16f41301b2.tar.gz
Deprecation warnings should always be mandatory since 5.12.0
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toke.c b/toke.c
index 7abcfb756f..0cc3fb8693 100644
--- a/toke.c
+++ b/toke.c
@@ -13122,8 +13122,8 @@ Perl_scan_num(pTHX_ const char *start, YYSTYPE* lvalp)
hex(ish) fractions... but '..' is OK. */
if (s[0] == '.' &&
s[1] != '.') {
- Perl_ck_warner(aTHX_ packWARN(WARN_DEPRECATED),
- "Dot after %s literal is concatenation", base);
+ Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED),
+ "Dot after %s literal is concatenation", base);
}
sv = newSV(0);