diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-09-07 09:25:24 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-09-07 09:25:24 +0000 |
commit | f23102e2d635682f5818275abd91b9deefde470e (patch) | |
tree | 7a900da7ce36a01ca6766a6172c7f23fa4a30922 /toke.c | |
parent | d052521ac15ab4bed8ae26dfa1c8e09c87be6d3c (diff) | |
download | perl-f23102e2d635682f5818275abd91b9deefde470e.tar.gz |
Remove the 'err' keyword
p4raw-id: //depot/perl@31812
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -4235,7 +4235,6 @@ Perl_yylex(pTHX) switch (tmp) { case KEY_or: case KEY_and: - case KEY_err: case KEY_for: case KEY_unless: case KEY_if: @@ -5922,9 +5921,6 @@ Perl_yylex(pTHX) case KEY_eof: UNI(OP_EOF); - case KEY_err: - OPERATOR(DOROP); - case KEY_exp: UNI(OP_EXP); @@ -7328,14 +7324,6 @@ Perl_keyword (pTHX_ const char *name, I32 len, bool all_keywords) goto unknown; - case 'r': - if (name[2] == 'r') - { /* err */ - return (all_keywords || FEATURE_IS_ENABLED("err") ? -KEY_err : 0); - } - - goto unknown; - case 'x': if (name[2] == 'p') { /* exp */ |