diff options
| -rw-r--r-- | test-suite/output/Tactics.out | 1 | ||||
| -rw-r--r-- | toplevel/coqtop.ml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/test-suite/output/Tactics.out b/test-suite/output/Tactics.out index 8e8b8059f9..365fa9bb40 100644 --- a/test-suite/output/Tactics.out +++ b/test-suite/output/Tactics.out @@ -1,4 +1,5 @@ intro H; split; [ a H | e H ]. + intros; match goal with | |- context [if ?X then _ else _] => case X end; trivial. diff --git a/toplevel/coqtop.ml b/toplevel/coqtop.ml index 70c85ca4cf..dada1ed9d3 100644 --- a/toplevel/coqtop.ml +++ b/toplevel/coqtop.ml @@ -21,7 +21,7 @@ open Coqinit let get_version_date () = try - let ch = open_in (Coq_config.coqtop^"/revision") in + let ch = open_in (Coq_config.coqlib^"/revision") in let ver = input_line ch in let rev = input_line ch in (ver,rev) |
