summaryrefslogtreecommitdiff
path: root/src/parser
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-05-01 22:32:32 +0000
committerMorgan Deters <mdeters@gmail.com>2011-05-01 22:32:32 +0000
commitbf837ea666980a0556d7881316f34be7ad1e2ea2 (patch)
tree6c0a5eae01f7967c02a0ef84c4bccbacf5dfa35f /src/parser
parent89b0369e887b4cf876e95dc862ae3057383370f3 (diff)
minor fixes, plus experimental readline support in InteractiveShell
Diffstat (limited to 'src/parser')
-rw-r--r--src/parser/smt2/Smt2.g2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/smt2/Smt2.g b/src/parser/smt2/Smt2.g
index 9466f8753..17ea1611d 100644
--- a/src/parser/smt2/Smt2.g
+++ b/src/parser/smt2/Smt2.g
@@ -300,7 +300,7 @@ command returns [CVC4::Command* cmd]
}
}
| EXIT_TOK
- { cmd = NULL; }
+ { cmd = new QuitCommand; }
;
symbolicExpr[CVC4::SExpr& sexpr]
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback