summaryrefslogtreecommitdiff
path: root/internal/parse.h
diff options
context:
space:
mode:
Diffstat (limited to 'internal/parse.h')
-rw-r--r--internal/parse.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/internal/parse.h b/internal/parse.h
index fc78836e5c..d7fc6ddad4 100644
--- a/internal/parse.h
+++ b/internal/parse.h
@@ -18,8 +18,6 @@
struct rb_iseq_struct; /* in vm_core.h */
-#define STRTERM_HEREDOC IMEMO_FL_USER0
-
/* structs for managing terminator of string literal and heredocment */
typedef struct rb_strterm_literal_struct {
long nest;
@@ -40,7 +38,7 @@ typedef struct rb_strterm_heredoc_struct {
#define HERETERM_LENGTH_MAX UINT_MAX
typedef struct rb_strterm_struct {
- VALUE flags;
+ bool heredoc;
union {
rb_strterm_literal_t literal;
rb_strterm_heredoc_t heredoc;