diff options
author | Abigail <abigail@abigail.be> | 2016-11-23 19:38:15 +0100 |
---|---|---|
committer | Abigail <abigail@abigail.be> | 2017-01-16 19:18:13 +0100 |
commit | 6ef4f8b7ef62d23d0b240c6f964676e87ae049c2 (patch) | |
tree | f0824823b349c489ef8274b86e8487a60ed8e7a7 /toke.c | |
parent | fcdb3ac1ccb7b4c3c28d45058dc5ab83d9299dbb (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ } |