diff options
Diffstat (limited to 'src/parser.y')
-rw-r--r-- | src/parser.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.y b/src/parser.y index 484fd25..55a7968 100644 --- a/src/parser.y +++ b/src/parser.y | |||
@@ -249,7 +249,7 @@ dictValues: expr ':' expr | |||
249 | ; | 249 | ; |
250 | 250 | ||
251 | commandDecl: tokCommand ':' tokString { bld.beginCommand( *$3 ); } | 251 | commandDecl: tokCommand ':' tokString { bld.beginCommand( *$3 ); } |
252 | commandParamList '{' cmpltExprList '}' { bld.closeCommand(); } | 252 | commandParamList '{' { bld.endCommandParams(); } cmpltExprList '}' { bld.closeCommand(); } |
253 | ; | 253 | ; |
254 | 254 | ||
255 | commandParamList: | 255 | commandParamList: |