summaryrefslogtreecommitdiff
path: root/perly.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2017-02-08 22:18:27 -0700
committerKarl Williamson <khw@cpan.org>2017-02-13 10:46:31 -0700
commit4623556176aef2c3bff081e1456fdf7f5c0695c1 (patch)
tree99154f4a5bccd1a1dc6d233546e23efba983e902 /perly.c
parentf40abc997d245cb9516bc71ad192596d10097972 (diff)
downloadperl-4623556176aef2c3bff081e1456fdf7f5c0695c1.tar.gz
perly.c: Clarify comment
Diffstat (limited to 'perly.c')
-rw-r--r--perly.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/perly.c b/perly.c
index 1c018bbbfe..9911a8ad19 100644
--- a/perly.c
+++ b/perly.c
@@ -347,11 +347,11 @@ Perl_yyparse (pTHX_ int gramtype)
* Although it's not designed for this purpose, we can use
* NATIVE_TO_UNI here. It returns its argument on ASCII
* platforms, and on EBCDIC translates native to ascii in
- * the 0-255 range, leaving everything else unchanged.
- * This jibes with yylex() returning some bare characters
- * in that range, but all tokens it returns are either 0,
- * or above 255. There could be a problem if NULs weren't
- * 0, or were ever returned as raw chars by yylex() */
+ * the 0-255 range, leaving every other possible input
+ * unchanged. This jibes with yylex() returning some bare
+ * characters in that range, but all tokens it returns are
+ * either 0, or above 255. There could be a problem if NULs
+ * weren't 0, or were ever returned as raw chars by yylex() */
yytoken = YYTRANSLATE(NATIVE_TO_UNI(parser->yychar));
}