aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/cErrors.ml
diff options
context:
space:
mode:
authorGravatar Yves Bertot <yves.bertot@inria.fr>2016-09-28 16:24:51 +0200
committerGravatar Maxime Dénès <mail@maximedenes.fr>2016-09-29 15:55:39 +0200
commit6d20e4c136fb2726ec8577bdfee051ecacdf8261 (patch)
tree61253d2ab100bffaf6971516050290263cc44bae /lib/cErrors.ml
parentc1c488d08857636381d6cbf3a9202e7123923dd0 (diff)
fix bug 3683 : adds references to the web site for the bug tracker
in error messages
Diffstat (limited to 'lib/cErrors.ml')
-rw-r--r--lib/cErrors.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/cErrors.ml b/lib/cErrors.ml
index 1459141d1..c69c7e400 100644
--- a/lib/cErrors.ml
+++ b/lib/cErrors.ml
@@ -93,7 +93,9 @@ let print_backtrace e = match Backtrace.get_backtrace e with
let print_anomaly askreport e =
if askreport then
- hov 0 (str "Anomaly: " ++ raw_anomaly e ++ spc () ++ str "Please report.")
+ hov 0 (str "Anomaly: " ++ raw_anomaly e ++ spc () ++
+ strbrk "Please report at " ++ str Coq_config.wwwbugtracker ++
+ str ".")
else
hov 0 (raw_anomaly e)