summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2016-11-23 19:38:15 +0100
committerAbigail <abigail@abigail.be>2017-01-16 19:18:13 +0100
commit6ef4f8b7ef62d23d0b240c6f964676e87ae049c2 (patch)
treef0824823b349c489ef8274b86e8487a60ed8e7a7 /toke.c
parentfcdb3ac1ccb7b4c3c28d45058dc5ab83d9299dbb (diff)
downloadperl-6ef4f8b7ef62d23d0b240c6f964676e87ae049c2.tar.gz
Use of comma-less variable lists is deprecated.
It will be fatal by Perl 5.28.
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toke.c b/toke.c
index 9bd145d259..19463c860f 100644
--- a/toke.c
+++ b/toke.c
@@ -467,7 +467,7 @@ S_printbuf(pTHX_ const char *const fmt, const char *const s)
static int
S_deprecate_commaless_var_list(pTHX) {
PL_expect = XTERM;
- deprecate("comma-less variable list");
+ deprecate_fatal_in("5.28", "Use of comma-less variable list is deprecated");
return REPORT(','); /* grandfather non-comma-format format */
}