aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2009-02-24 18:47:13 +0000
committerWillem Jan Palenstijn2009-02-24 18:47:13 +0000
commitb4cf9e5a2633bf0346d710d0c67288337536be85 (patch)
tree4d93bbe8a43629da23a4480e2ff8dec706add070 /engines
parent357299c5705d6856e070e537610275f1943e6653 (diff)
downloadscummvm-rg350-b4cf9e5a2633bf0346d710d0c67288337536be85.tar.gz
scummvm-rg350-b4cf9e5a2633bf0346d710d0c67288337536be85.tar.bz2
scummvm-rg350-b4cf9e5a2633bf0346d710d0c67288337536be85.zip
fix typo in parse rule
svn-id: r38846
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/engine/said.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/said.y b/engines/sci/engine/said.y
index 8ecb0a20c8..e525ff66b0 100644
--- a/engines/sci/engine/said.y
+++ b/engines/sci/engine/said.y
@@ -177,7 +177,7 @@ cwordset : wordset
wordset : word
{ $$ = $1; }
| YY_PARENO expr YY_PARENC
- { $$ = $1; }
+ { $$ = $2; }
| wordset YY_COMMA wordset
{ $$ = said_attach_branch($1, $3); }
| wordset YY_BRACKETSO_LT wordrefset YY_BRACKETSC