summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Mai <l.mai@web.de>2016-11-14 15:23:17 +0100
committerLukas Mai <l.mai@web.de>2016-11-14 18:26:10 +0100
commit16d1d8bdaf1e7c1c3ad11abc246622d1e5c3b26a (patch)
tree86c9f87897535f2f30e4a216d687f3316dd5bf2a
parentfaab18b64b60a535106a459bc6860e05861f15d8 (diff)
downloadperl-16d1d8bdaf1e7c1c3ad11abc246622d1e5c3b26a.tar.gz
toke.c: remove obsolete comment
-rw-r--r--toke.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/toke.c b/toke.c
index 524a999c14..5a181c325b 100644
--- a/toke.c
+++ b/toke.c
@@ -2290,12 +2290,12 @@ S_tokeq(pTHX_ SV *sv)
* Pattern matching will set PL_lex_op to the pattern-matching op to
* make (we return THING if pl_yylval.ival is OP_NULL, PMFUNC otherwise).
*
- * OP_CONST and OP_READLINE are easy--just make the new op and return.
+ * OP_CONST is easy--just make the new op and return.
*
* Everything else becomes a FUNC.
*
- * Sets PL_lex_state to LEX_INTERPPUSH unless (ival was OP_NULL or we
- * had an OP_CONST or OP_READLINE). This just sets us up for a
+ * Sets PL_lex_state to LEX_INTERPPUSH unless ival was OP_NULL or we
+ * had an OP_CONST. This just sets us up for a
* call to S_sublex_push().
*/