aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/yuescript/yue_parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuescript/yue_parser.cpp b/src/yuescript/yue_parser.cpp
index 78e6e52..d8fdc28 100644
--- a/src/yuescript/yue_parser.cpp
+++ b/src/yuescript/yue_parser.cpp
@@ -230,7 +230,7 @@ YueParser::YueParser() {
230 return true; 230 return true;
231 }); 231 });
232 232
233 in_block = +space_break >> advance_match >> ensure(Block, pop_indent); 233 in_block = space_break >> *(*set(" \t") >> line_break) >> advance_match >> ensure(Block, pop_indent);
234 234
235 LocalFlag = expr('*') | '^'; 235 LocalFlag = expr('*') | '^';
236 LocalValues = NameList >> -(space >> '=' >> space >> (TableBlock | ExpListLow)); 236 LocalValues = NameList >> -(space >> '=' >> space >> (TableBlock | ExpListLow));