aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel/usage.ml
diff options
context:
space:
mode:
authorGravatar notin <notin@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-02-11 14:39:08 +0000
committerGravatar notin <notin@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-02-11 14:39:08 +0000
commitf930602d29ee71144b620629b3f7148e22e309c1 (patch)
tree4baacee4b4b3d3d01d55d8820e46b353a05ffcc2 /toplevel/usage.ml
parentf4c9a46f34ff775f6e19a1f93e2a8d408cf9f3ad (diff)
Report des revisions #11826, #11828 et #11829 de v8.2 vers trunk
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11915 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'toplevel/usage.ml')
-rw-r--r--toplevel/usage.ml10
1 files changed, 3 insertions, 7 deletions
diff --git a/toplevel/usage.ml b/toplevel/usage.ml
index fb26f5039..4494a01e9 100644
--- a/toplevel/usage.ml
+++ b/toplevel/usage.ml
@@ -8,13 +8,10 @@
(* $Id$ *)
-let print_header () =
- Printf.printf "Welcome to Coq %s (%s)\n" Revision.version Revision.revision;
- flush stdout
-
let version () =
- Printf.printf "The Coq Proof Assistant, version %s (%s)\n" Revision.version Revision.revision;
- Printf.printf "compiled on %s\n" Revision.date;
+ Printf.printf "The Coq Proof Assistant, version %s (%s)\n"
+ Coq_config.version Coq_config.date;
+ Printf.printf "compiled on %s\n" Coq_config.compile_date;
exit 0
(* print the usage of coqtop (or coqc) on channel co *)
@@ -101,4 +98,3 @@ let print_config () =
Printf.printf "CAMLP4LIB=%s\n" Coq_config.camlp4lib
-