aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/fake_ide.ml6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/fake_ide.ml b/tools/fake_ide.ml
index 214dfb4703..8fcca535d1 100644
--- a/tools/fake_ide.ml
+++ b/tools/fake_ide.ml
@@ -266,9 +266,11 @@ let eval_print l coq =
let to_id, _ = get_id id in
eval_call (query (phrase, to_id)) coq
| [ Tok(_,"WAIT") ] ->
- eval_call (status false) coq
+ let phrase = "Stm Wait." in
+ eval_call (query (phrase,tip_id())) coq
| [ Tok(_,"JOIN") ] ->
- eval_call (status true) coq
+ let phrase = "Stm JoinDocument." in
+ eval_call (query (phrase,tip_id())) coq
| [ Tok(_,"ASSERT"); Tok(_,"TIP"); Tok(_,id) ] ->
let to_id, _ = get_id id in
if not(Stateid.equal (Document.tip doc) to_id) then error "Wrong tip"