diff options
author | Sawyer X <xsawyerx@cpan.org> | 2017-02-08 14:00:37 +0100 |
---|---|---|
committer | Sawyer X <xsawyerx@cpan.org> | 2017-02-12 12:52:01 +0200 |
commit | d4360efa03060f769618abf1b433a49d3dab9774 (patch) | |
tree | ea112c62774b98f306535305a0b510aae6c3c5a4 /dquote.c | |
parent | 583bfb0c6976d1378e7acc1e4ff3b9c014d163da (diff) | |
download | perl-d4360efa03060f769618abf1b433a49d3dab9774.tar.gz |
Revert "Deprecating the use of C<< \cI<X> >> to specify a printable character."
This reverts commit bfdc8cd3d5a81ab176f7d530d2e692897463c97d.
Diffstat (limited to 'dquote.c')
-rw-r--r-- | dquote.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -46,10 +46,10 @@ Perl_grok_bslash_c(pTHX_ const char source, const bool output_warning) clearer[i++] = result; clearer[i++] = '\0'; - Perl_ck_warner_d(aTHX_ packWARN2(WARN_SYNTAX,WARN_DEPRECATED), - "\"\\c%c\" is more clearly written simply as \"%s\". " - "This will be a fatal error in Perl 5.28", - source, clearer); + Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), + "\"\\c%c\" is more clearly written simply as \"%s\"", + source, + clearer); } return result; |