diff options
author | Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> | 2020-04-23 14:33:05 +0100 |
---|---|---|
committer | Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> | 2020-05-22 10:45:06 +0100 |
commit | a3815e44b8fba04704944693e426f3f47362d3ff (patch) | |
tree | 6b3f332bf90d50e6d3c8320ad29a05b83ae5aef0 /perly.tab | |
parent | 49704e1a7f79e12814aa5fa55084f1105e2b27ec (diff) | |
download | perl-a3815e44b8fba04704944693e426f3f47362d3ff.tar.gz |
Fix a bunch of repeated-word typos
Mostly in comments and docs, but some in diagnostic messages and one
case of 'or die die'.
Diffstat (limited to 'perly.tab')
-rw-r--r-- | perly.tab | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -17,16 +17,16 @@ /* YYNSTATES -- Number of states. */ #define YYNSTATES 572 -/* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned - by yylex, with out-of-bounds checking. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 344 +/* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM + as returned by yylex, with out-of-bounds checking. */ #define YYTRANSLATE(YYX) \ - ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) + ((unsigned) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM - as returned by yylex, without out-of-bounds checking. */ + as returned by yylex. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, @@ -1189,6 +1189,6 @@ static const toketypes yy_type_tab[] = }; /* Generated from: - * e762043bfa8c11d38e46b8759b544243dd0b1dee698344186c06df7dd91ec5ed perly.y + * e5b801fdebce5c77dd8e644fc5a489cbea6af33db180e771dd9d669b12bbe0cf perly.y * 0947213b55d0ed11693554bea04987e886cf285f5c14cf9075fa1e7acc3f4061 regen_perly.pl * ex: set ro: */ |