aboutsummaryrefslogtreecommitdiff
path: root/build2/parser.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/parser.cxx')
-rw-r--r--build2/parser.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/build2/parser.cxx b/build2/parser.cxx
index a5ed0d5..412b557 100644
--- a/build2/parser.cxx
+++ b/build2/parser.cxx
@@ -2793,7 +2793,10 @@ namespace build2
//
tt = peek ();
- if (tt == type::lparen)
+ // Note that we require function call opening paren to be
+ // unseparated; consider: $x ($x == 'foo' ? 'FOO' : 'BAR').
+ //
+ if (tt == type::lparen && !peeked ().separated)
{
// Function call.
//