diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-30 17:50:19 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-30 17:50:19 +0000 |
commit | 7e84c16c57fe111372685c242980ee41cdbe1d3e (patch) | |
tree | 0ea62d70431f73132e5e7fbd2a7ce85a5cc8df70 | |
parent | 0c01eb4a69fb13dce36ec3b17c3ba06feb0d748b (diff) | |
download | perl-7e84c16c57fe111372685c242980ee41cdbe1d3e.tar.gz |
extend "Unrecognized escape" warning to \8, \9, and \_ as well
(from Hugo van der Sanden)
p4raw-id: //depot/perl@6024
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1377,7 +1377,7 @@ S_scan_const(pTHX_ char *start) default: { dTHR; - if (ckWARN(WARN_MISC) && isALPHA(*s)) + if (ckWARN(WARN_MISC) && isALNUM(*s)) Perl_warner(aTHX_ WARN_MISC, "Unrecognized escape \\%c passed through", *s); |