aboutsummaryrefslogtreecommitdiff
path: root/toplevel/coqloop.ml
diff options
context:
space:
mode:
authorYves Bertot2016-09-28 16:24:51 +0200
committerMaxime Dénès2016-09-29 15:55:39 +0200
commit6d20e4c136fb2726ec8577bdfee051ecacdf8261 (patch)
tree61253d2ab100bffaf6971516050290263cc44bae /toplevel/coqloop.ml
parentc1c488d08857636381d6cbf3a9202e7123923dd0 (diff)
fix bug 3683 : adds references to the web site for the bug tracker
in error messages
Diffstat (limited to 'toplevel/coqloop.ml')
-rw-r--r--toplevel/coqloop.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/toplevel/coqloop.ml b/toplevel/coqloop.ml
index 0d4807e163..69d68bd357 100644
--- a/toplevel/coqloop.ml
+++ b/toplevel/coqloop.ml
@@ -348,5 +348,7 @@ let rec loop () =
| any ->
Feedback.msg_error (str"Anomaly: main loop exited with exception: " ++
str (Printexc.to_string any) ++
- fnl() ++ str"Please report.");
+ fnl() ++
+ str"Please report" ++
+ strbrk" at " ++ str Coq_config.wwwbugtracker ++ str ".");
loop ()