src/Pure/tctical.ML
changeset 19861 620d90091788
parent 19646 91c0ae7e542b
child 20194 c9dbce9a23a1
--- a/src/Pure/tctical.ML	Mon Jun 12 21:18:10 2006 +0200
+++ b/src/Pure/tctical.ML	Mon Jun 12 21:19:00 2006 +0200
@@ -102,8 +102,7 @@
   Like ORELSE, but allows backtracking on both tac1 and tac2.
   The tactic tac2 is not applied until needed.*)
 fun (tac1 APPEND tac2) st =
-  Seq.append(tac1 st,
-                  Seq.make(fn()=> Seq.pull (tac2 st)));
+  Seq.append (tac1 st) (Seq.make(fn()=> Seq.pull (tac2 st)));
 
 (*Like APPEND, but interleaves results of tac1 and tac2.*)
 fun (tac1 INTLEAVE tac2) st =