summaryrefslogtreecommitdiff
path: root/src/GF/Command/Parse.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/GF/Command/Parse.hs')
-rw-r--r--src/GF/Command/Parse.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GF/Command/Parse.hs b/src/GF/Command/Parse.hs
index 3417baff9..35abf1b7b 100644
--- a/src/GF/Command/Parse.hs
+++ b/src/GF/Command/Parse.hs
@@ -51,7 +51,7 @@ pFilename = liftM2 (:) (RP.satisfy isFileFirst) (RP.munch (not . isSpace)) where
pArgument =
RP.option ANoArg
- (fmap ATree (pTree False)
+ (fmap AExpr pExpr
RP.<++
(RP.munch isSpace >> RP.char '%' >> fmap AMacro pIdent))