summaryrefslogtreecommitdiff
path: root/parser.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-02-12 12:41:16 -0700
committerKarl Williamson <khw@cpan.org>2022-02-14 17:08:51 -0700
commit4e9fa508272589e302e6987b1d1526d91ea31555 (patch)
tree700718f3aeebff6e51e44552a87538085a3a1339 /parser.h
parentd84870c8e4508570b12bc7cd28704ca04b63a367 (diff)
downloadperl-4e9fa508272589e302e6987b1d1526d91ea31555.tar.gz
parser.h: add to comments
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/parser.h b/parser.h
index d5bc3c8616..46d6a19c7b 100644
--- a/parser.h
+++ b/parser.h
@@ -70,8 +70,8 @@ typedef struct yy_parser {
SV *lex_stuff; /* runtime pattern from m// or s/// */
I32 multi_start; /* 1st line of multi-line string */
I32 multi_end; /* last line of multi-line string */
- UV multi_open; /* delimiter of said string */
- UV multi_close; /* delimiter of said string */
+ UV multi_open; /* delimiter code point of said string */
+ UV multi_close; /* delimiter code point of said string */
bool lex_re_reparsing; /* we're doing G_RE_REPARSING */
U8 lex_super_state;/* lexer state to save */
U16 lex_sub_inwhat; /* "lex_inwhat" to use in sublex_push */