summaryrefslogtreecommitdiff
path: root/parsexp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'parsexp.cc')
-rw-r--r--parsexp.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/parsexp.cc b/parsexp.cc
index dc58c91f..57a2b7b4 100644
--- a/parsexp.cc
+++ b/parsexp.cc
@@ -492,18 +492,16 @@ parser_t::parse_value_term(std::istream& in, scope_t& scope, const flags_t tflag
break;
}
+#if 0
case token_t::DOLLAR:
tok = next_token(in, tflags);
if (tok.kind != token_t::IDENT)
throw parse_error("$ symbol must be followed by variable name");
-#if 0
node = new op_t(op_t::VAR_NAME);
node->set_string(tok.value.as_string());
-#endif
break;
-#if 0
case token_t::DOT:
node = new op_t(op_t::NODE_ID);
node->set_name(document_t::CURRENT);