summaryrefslogtreecommitdiff
path: root/dquote.c
diff options
context:
space:
mode:
authorSawyer X <xsawyerx@cpan.org>2017-02-08 14:00:37 +0100
committerSawyer X <xsawyerx@cpan.org>2017-02-12 12:52:01 +0200
commitd4360efa03060f769618abf1b433a49d3dab9774 (patch)
treeea112c62774b98f306535305a0b510aae6c3c5a4 /dquote.c
parent583bfb0c6976d1378e7acc1e4ff3b9c014d163da (diff)
downloadperl-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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/dquote.c b/dquote.c
index ef030468c0..e02308e7ac 100644
--- a/dquote.c
+++ b/dquote.c
@@ -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;