merged
authorhaftmann
Wed, 22 Sep 2010 11:46:28 +0200
changeset 39611 e5448cf9a048
parent 39602 ae2c3059f8cc (diff)
parent 39610 23bdf736d84f (current diff)
child 39612 106e8952fd28
child 39613 7723505c746a
child 39639 3dd559ab878b
merged
--- a/src/HOL/Tools/ATP/atp_proof.ML	Wed Sep 22 10:30:24 2010 +0200
+++ b/src/HOL/Tools/ATP/atp_proof.ML	Wed Sep 22 11:46:28 2010 +0200
@@ -291,8 +291,8 @@
 
 (* It is not clear why some literals are followed by sequences of stars and/or
    pluses. We ignore them. *)
-val parse_decorated_atom =
-  parse_atom --| Scan.repeat ($$ "*" || $$ "+" || $$ " ")
+fun parse_decorated_atom x =
+  (parse_atom --| Scan.repeat ($$ "*" || $$ "+" || $$ " ")) x
 
 fun mk_horn ([], []) = AAtom (ATerm ("c_False", []))
   | mk_horn ([], pos_lits) = foldr1 (mk_aconn AOr) pos_lits