src/HOL/Ord.ML
changeset 9969 4753185f1dd2
parent 9422 4b6bc2b347e5
child 10231 178a272bceeb
--- a/src/HOL/Ord.ML	Fri Sep 15 11:34:46 2000 +0200
+++ b/src/HOL/Ord.ML	Fri Sep 15 12:39:57 2000 +0200
@@ -120,10 +120,9 @@
 by (Blast_tac 1);
 qed "linorder_less_linear";
 
-val prems = goal (the_context ())
- "[| (x::'a::linorder)<y ==> P; x=y ==> P; y<x ==> P |] ==> P";
-by(cut_facts_tac [linorder_less_linear] 1);
-by(REPEAT(eresolve_tac (prems@[disjE]) 1));
+val prems = Goal "[| (x::'a::linorder)<y ==> P; x=y ==> P; y<x ==> P |] ==> P";
+by (cut_facts_tac [linorder_less_linear] 1);
+by (REPEAT(eresolve_tac (prems@[disjE]) 1));
 qed "linorder_less_split";
 
 Goal "!!x::'a::linorder. (~ x < y) = (y <= x)";