aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/wg_Command.ml
diff options
context:
space:
mode:
authorGravatar aspiwack <aspiwack@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-07-13 08:54:02 +0000
committerGravatar aspiwack <aspiwack@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-07-13 08:54:02 +0000
commitd8e0144fc1e45d72a6650461231498e65637449a (patch)
tree91b3a28a776b05b94abd02d06034152e30da58f5 /ide/wg_Command.ml
parent68ebbfac8e560a7d6d917ff68baeb69e5c0c57d9 (diff)
Fixes r15610 (A new status Unsafe in Interface).
Two warnings had passed my sensors. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15619 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide/wg_Command.ml')
-rw-r--r--ide/wg_Command.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ide/wg_Command.ml b/ide/wg_Command.ml
index 931572da2..11249578e 100644
--- a/ide/wg_Command.ml
+++ b/ide/wg_Command.ml
@@ -119,7 +119,7 @@ object(self)
let answer = match Coq.interp handle insert ~raw:true phrase with
| Interface.Fail (l,str) ->
"Error while interpreting "^phrase^":\n"^str
- | Interface.Good results ->
+ | Interface.Good results | Interface.Unsafe results ->
"Result for command " ^ phrase ^ ":\n" ^ results
in
result#buffer#insert answer