summaryrefslogtreecommitdiff
path: root/src/expr
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr')
-rw-r--r--src/expr/command.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr/command.cpp b/src/expr/command.cpp
index 5b889712d..f48e07887 100644
--- a/src/expr/command.cpp
+++ b/src/expr/command.cpp
@@ -991,7 +991,7 @@ std::string GetInfoCommand::getFlag() const throw() {
void GetInfoCommand::invoke(SmtEngine* smtEngine) throw() {
try {
vector<SExpr> v;
- v.push_back(SExpr(d_flag));
+ v.push_back(SExpr(SExpr::Keyword(string(":") + d_flag)));
v.push_back(smtEngine->getInfo(d_flag));
stringstream ss;
ss << SExpr(v);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback